home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / subversion_detection.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  65 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12259);
  8.  script_version ("$Revision: 1.2 $");
  9.  
  10.  name["english"] = "Subversion Detection";
  11.  script_name(english:name["english"]);
  12.  
  13.  desc["english"] =
  14. "The remote host is running the Subversion server.  Subversion
  15. is a software product which is similar to CVS in that it manages
  16. file revisions and can be accessed across a network by multiple
  17. clients.  Subversion typically listens on TCP port 3690.
  18.  
  19. See also : http://subversion.tigris.org
  20. Risk factor : Low";
  21.  
  22.  script_description(english:desc["english"]);
  23.  
  24.  summary["english"] = "Subversion Detection";
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  30.  family["english"] = "Remote file access";
  31.  script_family(english:family["english"]);
  32.  script_dependencie("find_service2.nasl");
  33.  script_require_ports(3690);
  34.  exit(0);
  35. }
  36.  
  37.  
  38.  
  39. include("misc_func.inc");
  40. # start check
  41.  
  42. port = get_kb_item("Services/subversion");
  43. if ( ! port ) port = 3690;
  44.  
  45. if (! get_tcp_port_state(port))
  46.     exit(0);
  47.  
  48.  
  49. soc = open_sock_tcp(port);
  50. if (!soc)
  51.         exit(0);
  52.  
  53. r = recv_line(socket:soc, length:1024);
  54.  
  55. if (! r)
  56.     exit(0);
  57.  
  58. if ("success ( 1 2" >< r)
  59. {
  60.     security_note(port);
  61. }
  62.  
  63. close(soc);
  64. exit(0);
  65.